home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / remote / urd100.zip / EXAMPLE1.ZIP / URD.CTL < prev    next >
Text File  |  1993-02-26  |  4KB  |  107 lines

  1. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  2. ;  Example configurationfile for User Registration Door 1.00
  3. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  4.  
  5. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  6. ; Keyword : REGISTRATIONKEY
  7. ; Purpose : Enter here the registrationkey you received with registering
  8. ;           the program.
  9.  
  10. RegistrationKey = 0
  11.  
  12.  
  13. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  14. ; Keyword : ANSWERFILEPATH
  15. ; Purpose : Defines the directory were the Answer File (NEWUSER.ASW) has to
  16. ;           be written (last backslash is optional). If none is supplied,
  17. ;           URD will default to the RA system directory.
  18.  
  19. AnswerFilePath = C:\RA\
  20.  
  21.  
  22. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  23. ; Keyword : ANSWERED
  24. ; Purpose : This keyword defines the start of the section that describes
  25. ;           how URD has to update the user when he/she has fineshed the
  26. ;           questionnaire correctly.
  27. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  28. ; Keyword : AFLAGS, BFLAGS, CFLAGS, DFLAGS
  29. ; Purpose : Sets or resets the flags. The flags are numbered from 1 to 8.
  30. ;           You can use the following characters :
  31. ;
  32. ;             -  Flag is not affected
  33. ;             1  Flag is set
  34. ;             0  Flag is reset
  35. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  36. ; Keyword : UPDATELEVEL
  37. ; Purpose : Updates the securitylevel of the user. The format of this line
  38. ;           is :
  39. ;
  40. ;             UpdateLevel <old level>,<new level>,<timeleft>
  41. ;
  42. ;           <old level>  : The level of the user before he started the
  43. ;                          registration.
  44. ;           <new level>  : The level he will get AFTER completing the
  45. ;                          registration.
  46. ;           <timeleft>   : If the users level was updated due to this
  47. ;                          statement, his timelimit will be set to this
  48. ;                          value.
  49. ;
  50. ;           You can use this line as often as you want. It's only limited by
  51. ;           the amount of memory you have available. The level of the user
  52. ;           is only updated when an exact match can be made. If you don't
  53. ;           want to use the level update or timeleft update, make them zero.
  54. ;           For example : UpdateLevel 10,20,0  or  UpdateLevel 10,0,30
  55. ;           If <old level> is zero, the statement will be ignored.
  56. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  57. ; Keyword : LOCKOUT
  58. ; Purpose : Locks out the user when he/she doesn't want to anser you
  59. ;           questionnaire. The securitylevel of the user will be lowered to
  60. ;           zero (0) and the call will be terminated. A LOCKOUT will
  61. ;           override a DELETE if they are used both. This keyword can only
  62. ;           be used in the NOTANSWERED section.
  63. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  64. ; Keyword : DELETE
  65. ; Purpose : Deletes the user from the userbase if he/she doesn't want to
  66. ;           answer your questionnaire. After deleting the user the call
  67. ;           be terminated. This keyword can only be used in the NOTANSWERED
  68. ;           section.
  69. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  70. ; Keyword : HANGUP
  71. ; Purpose : Terminates the call if the user don't want to answer your
  72. ;           questionnaire. This keyword can be only be used in the
  73. ;           NOTANSWERED section.
  74. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  75. ; Keyword : END
  76. ; Purpose : The section must be ended with an END keyword
  77. ;
  78.  
  79. Answered
  80.   AFlags = 1-------
  81.   BFlags = --------
  82.   CFlags = --------
  83.   DFlags = --------
  84.   UpdateLevel = 10,15,30
  85. End
  86.  
  87.  
  88. ; =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  89. ; Keyword : NOTANSWERED
  90. ; Purpose : This keyword defines the start of the section that describes
  91. ;           how URD has to update the user when it doesn't wanted to
  92. ;           answer the question. You can use the same keywords as with
  93. ;           ANSWERED.
  94.  
  95. NotAnswered
  96.   AFlags = 0-------
  97.   BFlags = --------
  98.   CFlags = --------
  99.   DFlags = --------
  100.   UpdateLevel = 10,5,15
  101.   Lockout
  102. End
  103.  
  104.  
  105. ; NOTE: A keyword like "DFLAGS = --------" may also be left out. URD won't
  106. ;       change the flags by default.
  107. ; <EOF>